home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / MORISEIK.L2 < prev    next >
Text File  |  1996-04-01  |  3KB  |  128 lines

  1. name Mori-Seiki w/ Stock stop @ beginning.
  2.  
  3. % 00
  4. N >4
  5. G 2
  6. X ->34
  7. Z ->34
  8. D 2
  9. I ->34
  10. K ->34
  11. U ->34
  12. W ->34
  13. P ->34
  14. A 60 P
  15. Q ->34
  16. q ->34 Q
  17. R ->34
  18. F >34
  19. T 4
  20. S >4
  21. M 2
  22.  
  23. ModalGs 0 1 2 3 76 80 81 82 83 84 85  # List of g codes that are modal    
  24.  
  25. Sequence#s N 1 10 10                  # Char, freq, incr & start          
  26. First#? y                             # Y or N  'Output 1st sequence no.  
  27.  
  28. Comment ( )                           # Begin End comment char.           
  29.  
  30. HCode Z                               # X or X U  'Horizontal char.       
  31. VCode X                               # Y or Y V  'Vertical char.         
  32. FeedCode F                            # Feed rate char.                   
  33.  
  34. Coolant 8 9 8                         # On, Off & Mist m codes            
  35. SpeedType G 97 96                     # CSS and RPM g codes               
  36. FeedType G 95 94                      # IPR & IPM g codes                 
  37.  
  38.  
  39. ByDiameter? Y                         # Y or N  'Output X val. by diameter
  40.  
  41. RevSigns X I                          # List of letters to reverse signs
  42.  
  43. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  44.  
  45. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  46.  
  47. Inch/MM 20 21                         # Inch & Metric g codes             
  48.  
  49. CtrCode K I                           # I J or R or I J K L               
  50.  
  51. Feed G1                               # Linear move                       
  52. Rapid G0                              # Rapid positioning word            
  53. Cw G3                                 # Circular move clockwise           
  54. Ccw G2                                # Circular move counter clockwise   
  55.  
  56. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  57.  
  58. AutoThread                            # Automatic thread canned cycle     
  59. G76 A[TParams] Q[VBite] R0
  60. G76 X[V] Z[H] R[StartAng] P[Depth] q[Peck1] F[Frate]
  61. end
  62.  
  63. Drill                                 # Drilling canned/manual cycle      
  64. G1 Z[Depth] F[FRate]
  65. G0 Z[SClear]
  66. end
  67.  
  68. Peck                                  # Pecking canned/manual cycle       
  69. None
  70. end
  71.  
  72. Tap                                   # Tapping canned/manual cycle       
  73. G84 Z[H] F[FRate]
  74. end
  75.  
  76. Ream                                  # Reaming canned/manual cycle       
  77. G85 Z[H] F[FRate]
  78. end
  79.  
  80. Bore                                  # Boring canned/manual cycle        
  81. G74 R0
  82. G74 Z[H] R[SClear] F[FRate]
  83. end
  84.  
  85. Cancel                                # Cancel a canned/manual cycle      
  86. G80
  87. end
  88.  
  89. StartCode                             # Start of the program              
  90. %0
  91. End
  92.  
  93. 1stToolChange                         # First tool change                 
  94. G0 M1
  95. G50 X0 Z0
  96. G0 T100
  97. G0 X0 Z0 T101
  98. M11
  99. M10
  100. G0 X0 Z0 T100
  101. T[Tool]
  102. G[FeedType] G[SpeedType] S[Speed] M[Direct]
  103. G0 X[V] Z[H] T[Comp] M[Cool]
  104. End
  105.  
  106. Infeed                                # Enable cutter comp                
  107. G1 X[V] Z[H] D[Dcomp] F[FRate]
  108. end
  109.  
  110. Outfeed                               # Disable cutter comp               
  111. G1 X[V] Z[H] F[FRate]
  112. end
  113.  
  114. ToolChange                            # Secondary tool changes            
  115. G0 Z[SClear]
  116. X0 T[LastTool]
  117. T[Tool]
  118. G[FeedType] G[SpeedType] S[Speed] M[Direct]
  119. G0 X[V] Z[H] T[Comp] M[Cool]
  120. End
  121.  
  122. EndCode                               # End of the program                
  123. G0 X0 Z0 T[Tool]
  124. M5
  125. M30
  126. %0
  127. End
  128.